-
Notifications
You must be signed in to change notification settings - Fork 6.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix(cdk/overlay): not setting correct opacity in high contrast mode on Firefox #21896
fix(cdk/overlay): not setting correct opacity in high contrast mode on Firefox #21896
Conversation
…n Firefox The backdrop styles were never switches to the `cdk-high-contrast` mixin which means that they won't work on Firefox. These changes switch to using the mixin and update the docs. Fixes angular#21890.
fcf7ea3
to
c457d18
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
… shorthand path Fixes a regression caused by angular#21896 where importing the overlay styles through `~@angular/cdk/overlay` would result in a compilation error.
… shorthand path (angular#22043) Fixes a regression caused by angular#21896 where importing the overlay styles through `~@angular/cdk/overlay` would result in a compilation error.
This issue has been automatically locked due to inactivity. Read more about our automatic conversation locking policy. This action has been performed automatically by a bot. |
The backdrop styles were never switches to the
cdk-high-contrast
mixin which means that they won't work on Firefox. These changes switch to using the mixin and update the docs.Fixes #21890.